Xbasic
< Less Than
Description
This operator results in TRUE if the expression to the left of the operator is less than the expression to the right.
< Less Than Operator Examples:]]
If Sales equals 900 it is less than 1000 so return true.
? Sales < 1000 = .T.
If Lastname starts with a letter from "A" through "G"
? Lastname < "H" = .T.
See Also